other sections
TELLDIR(3) | Linux Programmer's Manual | TELLDIR(3) |
名前¶
telldir - ディレクトリストリーム中の現在位置を返す
書式¶
#include <dirent.h> off_t telldir(DIR *dirp);
glibc
向けの機能検査マクロの要件
(feature_test_macros(7) 参照):
telldir(): _BSD_SOURCE || _SVID_SOURCE || _XOPEN_SOURCE
説明¶
telldir() 関数は、ディレクトリストリーム dirp に結びつけられた 現在位置を返す。
返り値¶
成功した場合、 telldir() 関数はディレクトリストリーム中の現在位置を返す。 エラーの場合、-1 が返されて、 errno が適切に設定される。
エラー¶
- EBADF
- ディレクトリストリームディスクリプタ dirp が無効である。
準拠¶
4.3BSD, POSIX.1-2001.
関連項目¶
closedir(3), opendir(3), readdir(3), rewinddir(3), scandir(3), seekdir(3)
2007-07-26 |